home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / CUG187.LZH / BLKDEF.MON < prev    next >
Text File  |  1985-12-31  |  190b  |  8 lines

  1.  
  2. struct ndx {
  3.     struct ndx *next;        /* pointer to next structure */
  4.     int blk_ptr;            /* pointer to owned block    */
  5.     char nkey[KEYSIZE];        /* key save area */
  6.     } queue_hd = {0, 0, ""};
  7.  
  8.